home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1997-2002 Alias|Wavefront,
- // a division of Silicon Graphics Limited.
- //
- // The information in this file is provided for the exclusive use of the
- // licensees of Alias|Wavefront. Such users have the right to use, modify,
- // and incorporate this code into other products for purposes authorized
- // by the Alias|Wavefront license agreement, without fee.
- //
- // ALIAS|WAVEFRONT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- // EVENT SHALL ALIAS|WAVEFRONT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- // CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- // DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- // TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- //
- // Script Paint Tool UI script
- //
- // Note that this script depends on your Linear units being set to cm.
- // You can check your current units in the preferences window, under Settings.
- //
- global proc userPaintValues(string $toolName)
- {
- string $parent = (`toolPropertyWindow -q -location` + "|userPaint");
- setParent $parent;
-
- string $helpTag = "ScriptPaintTool";
- toolPropertySetCommon $toolName "userPaint.xpm" $helpTag;
-
- string $currentTab = `tabLayout -query -selectTab userPaintTabs_L`;
- jasperValues( "userPaintCtx", $toolName, $currentTab );
-
- toolPropertySelect userPaint;
- }
-
-
- global proc jasperSetupValues(
- string $jasperCommand,
- string $toolName,
- int $force
- )
- {
- string $cmd;
- global int $jasperSetupActive;
-
- // print ("jasperSetupValues( " + $force + ") active = "
- // + $jasperSetupActive + "\n");
-
- if ( !$force && $jasperSetupActive ) {
- return;
- }
- $jasperSetupActive = 1;
-
- $cmd = ($jasperCommand + " -q -tsc " + $toolName);
- textFieldGrp -e -text `eval $cmd` toolSetupTextField;
-
- $cmd = ($jasperCommand + " -q -tcc " + $toolName);
- textFieldGrp -e -text `eval $cmd` toolCleanupTextField;
-
- $cmd = ($jasperCommand + " -q -gsc " + $toolName);
- textFieldGrp -e -text `eval $cmd` getSrfTextField;
-
- $cmd = ($jasperCommand + " -q -ic " + $toolName);
- textFieldGrp -e -text `eval $cmd` initTextField;
-
- $cmd = ($jasperCommand + " -q -fc " + $toolName);
- textFieldGrp -e -text `eval $cmd` finalizeTextField;
-
- $cmd = ($jasperCommand + " -q -svc " + $toolName);
- textFieldGrp -e -text `eval $cmd` setValueTextField;
-
- $cmd = ($jasperCommand + " -q -gvc " + $toolName);
- textFieldGrp -e -text `eval $cmd` getValueTextField;
-
- $cmd = ($jasperCommand + " -q -gac " + $toolName);
- textFieldGrp -e -text `eval $cmd` getArrayAttrTextField;
-
- $cmd = ($jasperCommand + " -q -fp " + $toolName);
- checkBoxGrp -e -v1 `eval $cmd` fullPathsChkBox;
- }
-
-